home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / Caml Light 0.7 source / src / linker / prim_c.ml < prev    next >
Text File  |  1995-07-05  |  2KB  |  103 lines

  1. let primitives_table = [|
  2.   "compare";
  3.   "equal";
  4.   "notequal";
  5.   "lessthan";
  6.   "lessequal";
  7.   "greaterthan";
  8.   "greaterequal";
  9.   "extern_val";
  10.   "extern_compact_val";
  11.   "format_float";
  12.   "float_of_string";
  13.   "exp_float";
  14.   "log_float";
  15.   "sqrt_float";
  16.   "power_float";
  17.   "sin_float";
  18.   "cos_float";
  19.   "tan_float";
  20.   "asin_float";
  21.   "acos_float";
  22.   "atan_float";
  23.   "atan2_float";
  24.   "gc_stat";
  25.   "gc_get";
  26.   "gc_set";
  27.   "gc_minor";
  28.   "gc_major";
  29.   "gc_full_major";
  30.   "hash_univ_param";
  31.   "intern_val";
  32.   "int_of_string";
  33.   "format_int";
  34.   "open_descriptor";
  35.   "channel_descriptor";
  36.   "channel_size";
  37.   "flush";
  38.   "output_char";
  39.   "output_int";
  40.   "output";
  41.   "seek_out";
  42.   "pos_out";
  43.   "close_out";
  44.   "input_char";
  45.   "input_int";
  46.   "input";
  47.   "seek_in";
  48.   "pos_in";
  49.   "close_in";
  50.   "input_scan_line";
  51.   "get_next_char";
  52.   "start_interp";
  53.   "realloc_global";
  54.   "static_alloc";
  55.   "static_free";
  56.   "static_resize";
  57.   "obj_is_block";
  58.   "obj_block";
  59.   "available_primitives";
  60.   "parse_engine";
  61.   "create_string";
  62.   "compare_strings";
  63.   "blit_string";
  64.   "fill_string";
  65.   "is_printable";
  66.   "sys_exit";
  67.   "sys_open";
  68.   "sys_close";
  69.   "sys_remove";
  70.   "sys_rename";
  71.   "sys_chdir";
  72.   "sys_getenv";
  73.   "sys_system_command";
  74.   "sys_catch_break";
  75.   "gr_open_graph";
  76.   "gr_close_graph";
  77.   "gr_clear_graph";
  78.   "gr_size_x";
  79.   "gr_size_y";
  80.   "gr_set_color";
  81.   "gr_plot";
  82.   "gr_point_color";
  83.   "gr_moveto";
  84.   "gr_current_point";
  85.   "gr_lineto";
  86.   "gr_draw_arc";
  87.   "gr_set_line_width";
  88.   "gr_draw_char";
  89.   "gr_draw_string";
  90.   "gr_set_font";
  91.   "gr_set_text_size";
  92.   "gr_text_size";
  93.   "gr_fill_rect";
  94.   "gr_fill_arc";
  95.   "gr_fill_poly";
  96.   "gr_make_image";
  97.   "gr_dump_image";
  98.   "gr_draw_image";
  99.   "gr_create_image";
  100.   "gr_blit_image";
  101.   "gr_wait_event";
  102.   "gr_sound"|];;
  103.